Make just TWO changes to the program so it holds 100 items, each set to 13.33.

Answer:

All you need to do is change each 10 to a 100.

Printing out an Array

Here is the program with these changes (plus another change):

DIM NUM( 1 TO 100  )          ' An array of  100 floating point numbers

FOR COUNT = 1 TO 100          ' Visit each slot of the array
  LET NUM( COUNT ) = 13.33    ' Put the value 13.33 into this slot
NEXT COUNT

' Print each item the array

FOR COUNT = _____________     ' Visit each slot of the array

  PRINT  _____________        ' Print out the item

NEXT COUNT

END

The addition to the program visits each slot of the array and then PRINTs that item.

QUESTION 4:

Of course, your job is to fill in the blanks.